-
Notifications
You must be signed in to change notification settings - Fork 17
rocketmq-data-consistency #393
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rocketmq-data-consistency #393
Conversation
4b96690 to
3e72aed
Compare
| resource "alicloud_ram_access_key" "ramak" { | ||
| user_name = alicloud_ram_user.ram_user.name | ||
| depends_on = [ | ||
| alicloud_ram_user.ram_user |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个 depends_on 去掉
| create = "15m" | ||
| } | ||
| depends_on = [ | ||
| alicloud_instance.ecs_instance_provider, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alicloud_instance 的 依赖也去掉
| account_name = var.db_account_name | ||
| account_password = var.db_password | ||
| depends_on = [ | ||
| alicloud_db_instance.rds_instance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
依赖去掉
| resource "alicloud_db_account_privilege" "account_privilege" { | ||
| privilege = "ReadWrite" | ||
| instance_id = alicloud_db_instance.rds_instance.id | ||
| account_name = var.db_account_name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里直接引用 alicloud_rds_account 资源的属性,去掉 depends_on
3e72aed to
ec614f7
Compare
d9facfb to
2c974a5
Compare
rocketmq-data-consistency